home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 11 / FM Towns Free Software Collection 11.iso / t_os / tool / ein / fvi / fvimsg / fvimsg.h < prev    next >
Text File  |  1995-09-27  |  2KB  |  52 lines

  1.  
  2. // metal 拡張メッセージ ( GM_EXECUSER で、info で渡す )
  3. #define        MTL_ICONIZE        0x8000        // アイコン化
  4. #define        MTL_RESTORE        0x8001        // 復元
  5. #define        MTL_MAXIMIZE    0x8002        // 最大化
  6.  
  7. // FVi 拡張メッセージ ( GM_EXECUSER で、info で渡す )
  8.  
  9. // リストメニューアクティブ化 ( 0 か 1 を data で渡す )
  10. #define        MTLFVI_ACTIVE    0xf010
  11.  
  12. // リストメニューの再描画 ( 0 か 1 を data で渡す )
  13. #define        MTLFVI_REDRAW    0xf020
  14.  
  15. // リストメニューの再描画 ( パスのポインタを data で渡す )
  16. // そのパスが表示されていた時のみ、再描画する
  17. #define        MTLFVI_IFREDRAW    0xf030
  18.  
  19. // ドライブ指定強制再描画 ( ドライブ名を data で渡す 'D' など )
  20. // 指定されたドライブにセットして描画する(パス指定なし)
  21. #define        MTLFVI_LIST0    0xf040
  22. #define        MTLFVI_LIST1    0xf041
  23.  
  24. // パス指定の強制再描画 ( パスのポインタを data で渡す )
  25. // 指定されたパスにセットして描画する
  26. #define        MTLFVI_FORCE0    0xf050
  27. #define        MTLFVI_FORCE1    0xf051
  28.  
  29. extern int    MSG_winId ;
  30. extern int    MSG_winFunc() ;
  31. extern int    MSG_drvSelBtnId[6] ;
  32. extern int    MSG_sendDriveFunc() ;
  33. extern int    MSG_redrawId[2] ;
  34. extern int    MSG_redrawFunc() ;
  35. extern int    MSG_selectForceId[2] ;
  36. extern int    MSG_selectForceFunc() ;
  37. extern int    MSG_activateId[2] ;
  38. extern int    MSG_activeFunc() ;
  39. extern int    MSG_forceRedrawTextId ;
  40. extern int    MSG_forceRedrawTextFunc() ;
  41. extern int    MSG_forceRedrawBtnId[2] ;
  42. extern int    MSG_forceRedrawFunc() ;
  43. extern int    MSG_ifRedrawTextId ;
  44. extern int    MSG_ifRedrawTextFunc() ;
  45. extern int    MSG_ifRedrawBtnId ;
  46. extern int    MSG_ifRedrawFunc() ;
  47.  
  48. extern int        MSG_forceNum ;
  49. extern int        MSG_findFVI() ;
  50. extern int        MSG_searchDrive() ;
  51.  
  52.